home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 September / PCWorld_2007-09_cd.bin / system / ntfs / ntfsundelete.exe / {app} / site.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2007-02-05  |  14KB  |  458 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.4)
  3.  
  4. """Append module search paths for third-party packages to sys.path.
  5.  
  6. ****************************************************************
  7. * This module is automatically imported during initialization. *
  8. ****************************************************************
  9.  
  10. In earlier versions of Python (up to 1.5a3), scripts or modules that
  11. needed to use site-specific modules would place ``import site''
  12. somewhere near the top of their code.  Because of the automatic
  13. import, this is no longer necessary (but code that does it still
  14. works).
  15.  
  16. This will append site-specific paths to the module search path.  On
  17. Unix, it starts with sys.prefix and sys.exec_prefix (if different) and
  18. appends lib/python<version>/site-packages as well as lib/site-python.
  19. On other platforms (mainly Mac and Windows), it uses just sys.prefix
  20. (and sys.exec_prefix, if different, but this is unlikely).  The
  21. resulting directories, if they exist, are appended to sys.path, and
  22. also inspected for path configuration files.
  23.  
  24. A path configuration file is a file whose name has the form
  25. <package>.pth; its contents are additional directories (one per line)
  26. to be added to sys.path.  Non-existing directories (or
  27. non-directories) are never added to sys.path; no directory is added to
  28. sys.path more than once.  Blank lines and lines beginning with
  29. '#' are skipped. Lines starting with 'import' are executed.
  30.  
  31. For example, suppose sys.prefix and sys.exec_prefix are set to
  32. /usr/local and there is a directory /usr/local/lib/python1.5/site-packages
  33. with three subdirectories, foo, bar and spam, and two path
  34. configuration files, foo.pth and bar.pth.  Assume foo.pth contains the
  35. following:
  36.  
  37.   # foo package configuration
  38.   foo
  39.   bar
  40.   bletch
  41.  
  42. and bar.pth contains:
  43.  
  44.   # bar package configuration
  45.   bar
  46.  
  47. Then the following directories are added to sys.path, in this order:
  48.  
  49.   /usr/local/lib/python1.5/site-packages/bar
  50.   /usr/local/lib/python1.5/site-packages/foo
  51.  
  52. Note that bletch is omitted because it doesn't exist; bar precedes foo
  53. because bar.pth comes alphabetically before foo.pth; and spam is
  54. omitted because it is not mentioned in either path configuration file.
  55.  
  56. After these path manipulations, an attempt is made to import a module
  57. named sitecustomize, which can perform arbitrary additional
  58. site-specific customizations.  If this import fails with an
  59. ImportError exception, it is silently ignored.
  60.  
  61. """
  62. import sys
  63. import os
  64. import __builtin__
  65.  
  66. def makepath(*paths):
  67.     dir = os.path.abspath(os.path.join(*paths))
  68.     return (dir, os.path.normcase(dir))
  69.  
  70.  
  71. def abs__file__():
  72.     """Set all module' __file__ attribute to an absolute path"""
  73.     for m in sys.modules.values():
  74.         
  75.         try:
  76.             m.__file__ = os.path.abspath(m.__file__)
  77.         continue
  78.         except AttributeError:
  79.             continue
  80.             continue
  81.         
  82.  
  83.     
  84.  
  85.  
  86. def removeduppaths():
  87.     ''' Remove duplicate entries from sys.path along with making them
  88.     absolute'''
  89.     L = []
  90.     known_paths = set()
  91.     for dir in sys.path:
  92.         (dir, dircase) = makepath(dir)
  93.         if dircase not in known_paths:
  94.             L.append(dir)
  95.             known_paths.add(dircase)
  96.             continue
  97.     
  98.     sys.path[:] = L
  99.     return known_paths
  100.  
  101.  
  102. def addbuilddir():
  103.     """Append ./build/lib.<platform> in case we're running in the build dir
  104.     (especially for Guido :-)"""
  105.     get_platform = get_platform
  106.     import distutils.util
  107.     s = 'build/lib.%s-%.3s' % (get_platform(), sys.version)
  108.     s = os.path.join(os.path.dirname(sys.path[-1]), s)
  109.     sys.path.append(s)
  110.  
  111.  
  112. def _init_pathinfo():
  113.     '''Return a set containing all existing directory entries from sys.path'''
  114.     d = set()
  115.     for dir in sys.path:
  116.         
  117.         try:
  118.             if os.path.isdir(dir):
  119.                 (dir, dircase) = makepath(dir)
  120.                 d.add(dircase)
  121.         continue
  122.         except TypeError:
  123.             continue
  124.             continue
  125.         
  126.  
  127.     
  128.     return d
  129.  
  130.  
  131. def addpackage(sitedir, name, known_paths):
  132.     """Add a new path to known_paths by combining sitedir and 'name' or execute
  133.     sitedir if it starts with 'import'"""
  134.     if known_paths is None:
  135.         _init_pathinfo()
  136.         reset = 1
  137.     else:
  138.         reset = 0
  139.     fullname = os.path.join(sitedir, name)
  140.     
  141.     try:
  142.         f = open(fullname, 'rU')
  143.     except IOError:
  144.         return None
  145.  
  146.     
  147.     try:
  148.         for line in f:
  149.             if line.startswith('#'):
  150.                 continue
  151.             
  152.             if line.startswith('import'):
  153.                 exec line
  154.                 continue
  155.             
  156.             line = line.rstrip()
  157.             (dir, dircase) = makepath(sitedir, line)
  158.             if dircase not in known_paths and os.path.exists(dir):
  159.                 sys.path.append(dir)
  160.                 known_paths.add(dircase)
  161.                 continue
  162.     finally:
  163.         f.close()
  164.  
  165.     if reset:
  166.         known_paths = None
  167.     
  168.     return known_paths
  169.  
  170.  
  171. def addsitedir(sitedir, known_paths = None):
  172.     """Add 'sitedir' argument to sys.path if missing and handle .pth files in
  173.     'sitedir'"""
  174.     if known_paths is None:
  175.         known_paths = _init_pathinfo()
  176.         reset = 1
  177.     else:
  178.         reset = 0
  179.     (sitedir, sitedircase) = makepath(sitedir)
  180.     if sitedircase not in known_paths:
  181.         sys.path.append(sitedir)
  182.     
  183.     
  184.     try:
  185.         names = os.listdir(sitedir)
  186.     except os.error:
  187.         return None
  188.  
  189.     names.sort()
  190.     for name in names:
  191.         if name.endswith(os.extsep + 'pth'):
  192.             addpackage(sitedir, name, known_paths)
  193.             continue
  194.     
  195.     if reset:
  196.         known_paths = None
  197.     
  198.     return known_paths
  199.  
  200.  
  201. def addsitepackages(known_paths):
  202.     '''Add site-packages (and possibly site-python) to sys.path'''
  203.     prefixes = [
  204.         sys.prefix]
  205.     if sys.exec_prefix != sys.prefix:
  206.         prefixes.append(sys.exec_prefix)
  207.     
  208.     for prefix in prefixes:
  209.         if prefix:
  210.             if sys.platform in ('os2emx', 'riscos'):
  211.                 sitedirs = [
  212.                     os.path.join(prefix, 'Lib', 'site-packages')]
  213.             elif os.sep == '/':
  214.                 sitedirs = [
  215.                     os.path.join(prefix, 'lib', 'python' + sys.version[:3], 'site-packages'),
  216.                     os.path.join(prefix, 'lib', 'site-python')]
  217.             else:
  218.                 sitedirs = [
  219.                     prefix,
  220.                     os.path.join(prefix, 'lib', 'site-packages')]
  221.             if sys.platform == 'darwin':
  222.                 if 'Python.framework' in prefix:
  223.                     home = os.environ.get('HOME')
  224.                     if home:
  225.                         sitedirs.append(os.path.join(home, 'Library', 'Python', sys.version[:3], 'site-packages'))
  226.                     
  227.                 
  228.             
  229.             for sitedir in sitedirs:
  230.                 if os.path.isdir(sitedir):
  231.                     addsitedir(sitedir, known_paths)
  232.                     continue
  233.             
  234.     
  235.  
  236.  
  237. def setBEGINLIBPATH():
  238.     '''The OS/2 EMX port has optional extension modules that do double duty
  239.     as DLLs (and must use the .DLL file extension) for other extensions.
  240.     The library search path needs to be amended so these will be found
  241.     during module import.  Use BEGINLIBPATH so that these are at the start
  242.     of the library search path.
  243.  
  244.     '''
  245.     dllpath = os.path.join(sys.prefix, 'Lib', 'lib-dynload')
  246.     libpath = os.environ['BEGINLIBPATH'].split(';')
  247.     if libpath[-1]:
  248.         libpath.append(dllpath)
  249.     else:
  250.         libpath[-1] = dllpath
  251.     os.environ['BEGINLIBPATH'] = ';'.join(libpath)
  252.  
  253.  
  254. def setquit():
  255.     """Define new built-ins 'quit' and 'exit'.
  256.     These are simply strings that display a hint on how to exit.
  257.  
  258.     """
  259.     if os.sep == ':':
  260.         exit = 'Use Cmd-Q to quit.'
  261.     elif os.sep == '\\':
  262.         exit = 'Use Ctrl-Z plus Return to exit.'
  263.     else:
  264.         exit = 'Use Ctrl-D (i.e. EOF) to exit.'
  265.     __builtin__.quit = __builtin__.exit = exit
  266.  
  267.  
  268. class _Printer(object):
  269.     '''interactive prompt objects for printing the license text, a list of
  270.     contributors and the copyright notice.'''
  271.     MAXLINES = 23
  272.     
  273.     def __init__(self, name, data, files = (), dirs = ()):
  274.         self._Printer__name = name
  275.         self._Printer__data = data
  276.         self._Printer__files = files
  277.         self._Printer__dirs = dirs
  278.         self._Printer__lines = None
  279.  
  280.     
  281.     def _Printer__setup(self):
  282.         if self._Printer__lines:
  283.             return None
  284.         
  285.         data = None
  286.         for dir in self._Printer__dirs:
  287.             for filename in self._Printer__files:
  288.                 filename = os.path.join(dir, filename)
  289.                 
  290.                 try:
  291.                     fp = file(filename, 'rU')
  292.                     data = fp.read()
  293.                     fp.close()
  294.                 continue
  295.                 except IOError:
  296.                     continue
  297.                 
  298.  
  299.             
  300.             if data:
  301.                 break
  302.                 continue
  303.             None<EXCEPTION MATCH>IOError
  304.         
  305.         if not data:
  306.             data = self._Printer__data
  307.         
  308.         self._Printer__lines = data.split('\n')
  309.         self._Printer__linecnt = len(self._Printer__lines)
  310.  
  311.     
  312.     def __repr__(self):
  313.         self._Printer__setup()
  314.         if len(self._Printer__lines) <= self.MAXLINES:
  315.             return '\n'.join(self._Printer__lines)
  316.         else:
  317.             return 'Type %s() to see the full %s text' % (self._Printer__name,) * 2
  318.  
  319.     
  320.     def __call__(self):
  321.         self._Printer__setup()
  322.         prompt = 'Hit Return for more, or q (and Return) to quit: '
  323.         lineno = 0
  324.         while None:
  325.             
  326.             try:
  327.                 for i in range(lineno, lineno + self.MAXLINES):
  328.                     print self._Printer__lines[i]
  329.             except IndexError:
  330.                 break
  331.                 continue
  332.  
  333.             lineno += self.MAXLINES
  334.             key = None
  335.             while key is None:
  336.                 key = raw_input(prompt)
  337.                 if key not in ('', 'q'):
  338.                     key = None
  339.                     continue
  340.             if key == 'q':
  341.                 break
  342.                 continue
  343.  
  344.  
  345.  
  346. def setcopyright():
  347.     """Set 'copyright' and 'credits' in __builtin__"""
  348.     __builtin__.copyright = _Printer('copyright', sys.copyright)
  349.     if sys.platform[:4] == 'java':
  350.         __builtin__.credits = _Printer('credits', 'Jython is maintained by the Jython developers (www.jython.org).')
  351.     else:
  352.         __builtin__.credits = _Printer('credits', '    Thanks to CWI, CNRI, BeOpen.com, Zope Corporation and a cast of thousands\n    for supporting Python development.  See www.python.org for more information.')
  353.     here = os.path.dirname(os.__file__)
  354.     __builtin__.license = _Printer('license', 'See http://www.python.org/%.3s/license.html' % sys.version, [
  355.         'LICENSE.txt',
  356.         'LICENSE'], [
  357.         os.path.join(here, os.pardir),
  358.         here,
  359.         os.curdir])
  360.  
  361.  
  362. class _Helper(object):
  363.     """Define the built-in 'help'.
  364.     This is a wrapper around pydoc.help (with a twist).
  365.  
  366.     """
  367.     
  368.     def __repr__(self):
  369.         return 'Type help() for interactive help, or help(object) for help about object.'
  370.  
  371.     
  372.     def __call__(self, *args, **kwds):
  373.         import pydoc as pydoc
  374.         return pydoc.help(*args, **kwds)
  375.  
  376.  
  377.  
  378. def sethelper():
  379.     __builtin__.help = _Helper()
  380.  
  381.  
  382. def aliasmbcs():
  383.     '''On Windows, some default encodings are not provided by Python,
  384.     while they are always available as "mbcs" in each locale. Make
  385.     them usable by aliasing to "mbcs" in such a case.'''
  386.     if sys.platform == 'win32':
  387.         import locale as locale
  388.         import codecs as codecs
  389.         enc = locale.getdefaultlocale()[1]
  390.         if enc.startswith('cp'):
  391.             
  392.             try:
  393.                 codecs.lookup(enc)
  394.             except LookupError:
  395.                 import encodings as encodings
  396.                 encodings._cache[enc] = encodings._unknown
  397.                 encodings.aliases.aliases[enc] = 'mbcs'
  398.             except:
  399.                 None<EXCEPTION MATCH>LookupError
  400.             
  401.  
  402.         None<EXCEPTION MATCH>LookupError
  403.     
  404.  
  405.  
  406. def setencoding():
  407.     """Set the string encoding used by the Unicode implementation.  The
  408.     default is 'ascii', but if you're willing to experiment, you can
  409.     change this."""
  410.     encoding = 'ascii'
  411.     if encoding != 'ascii':
  412.         sys.setdefaultencoding(encoding)
  413.     
  414.  
  415.  
  416. def execsitecustomize():
  417.     '''Run custom site specific code, if available.'''
  418.     
  419.     try:
  420.         import sitecustomize as sitecustomize
  421.     except ImportError:
  422.         pass
  423.  
  424.  
  425.  
  426. def main():
  427.     abs__file__()
  428.     paths_in_sys = removeduppaths()
  429.     if os.name == 'posix' and sys.path and os.path.basename(sys.path[-1]) == 'Modules':
  430.         addbuilddir()
  431.     
  432.     paths_in_sys = addsitepackages(paths_in_sys)
  433.     if sys.platform == 'os2emx':
  434.         setBEGINLIBPATH()
  435.     
  436.     setquit()
  437.     setcopyright()
  438.     sethelper()
  439.     aliasmbcs()
  440.     setencoding()
  441.     execsitecustomize()
  442.     if hasattr(sys, 'setdefaultencoding'):
  443.         del sys.setdefaultencoding
  444.     
  445.  
  446. main()
  447.  
  448. def _test():
  449.     print 'sys.path = ['
  450.     for dir in sys.path:
  451.         print '    %r,' % (dir,)
  452.     
  453.     print ']'
  454.  
  455. if __name__ == '__main__':
  456.     _test()
  457.  
  458.